        /* ==========================================
           GLOBAL VARIABLES & RESET
        ========================================== */
        :root {
            --color-primary: #0d3c55;
            --color-accent: #9fcc15;
            --color-light-gray: #fafafa;
            --color-dark: #0d3c55;
            --color-white: #ffffff;
            --shadow-light: 0 8px 20px rgba(0, 0, 0, 0.15);
            --border-radius: 20px;
            --transition: all 0.3s ease-in-out;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            padding: 20px;
            font-size: 100%;
            overflow-x: hidden;
            background-color: #fff;
        }

        /* ==========================================
           TYPOGRAPHY
        ========================================== */
        h1 { font-size: 46px; font-weight: 700; }
        h2 { font-size: 36px; font-weight: 700; }
        h3 { font-size: 28px; font-weight: 600; }
        h4 { font-size: 22px; font-weight: 600; }
        h5 { font-size: 18px; font-weight: 600; }
        h6 { font-size: 14px; font-weight: 600; }

        .title {
            position: relative;
            padding-left: 16px;
            color: var(--color-accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            display: inline-block;
        }

        .title::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%) rotate(45deg);
            background-color: var(--color-accent);
            width: 6px;
            height: 6px;
        }

        .title2 {
            font-size: 46px;
            font-weight: 700;
            color: var(--color-primary);
            line-height: 1.2;
        }

        .section-title {
            position: relative;
            padding-left: 16px;
            color: var(--color-accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%) rotate(45deg);
            background-color: var(--color-accent);
            width: 6px;
            height: 6px;
        }

        a {
            color: var(--color-accent);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--color-primary);
        }

        /* ==========================================
           UTILITY CLASSES
        ========================================== */
        .bg-light-gray { background-color: var(--color-light-gray); }
        .bg-dark { background-color: var(--color-dark); color: var(--color-white); }
        .bg-white { background-color: var(--color-white); }
        .color-accent { color: var(--color-accent); }
        .border-radius { border-radius: var(--border-radius); }
        .panel { border-radius: var(--border-radius); transition: var(--transition); }

        /* ==========================================
           HEADER & NAVIGATION
        ========================================== */
        .header {
            min-height: calc(100vh - 20px);
            border-radius: 16px 16px 0 0;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(169, 222, 89, 0.85) -36.02%, rgba(255, 255, 255, 0.85) 80.37%),
                        url("https://demo.awaikenthemes.com/ecobin/wp-content/uploads/2025/10/hero-bg-prime.png");
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            position: relative;
        }

        .navbar {
            padding: 15px 0;
            border-bottom: 1px solid rgba(14, 23, 20, 0.08);
        }

        .nav-item { margin: 0 10px; }
        
        .nav-link {
            font-size: 18px;
            font-weight: 600;
            color: var(--color-primary);
            padding: 12px 10px;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #0d6efd !important;
        }

        /* ==========================================
           BUTTONS
        ========================================== */
        .btn.btn-primary {
            background-color: var(--color-primary);
            border-color: var(--color-primary);
            color: var(--color-accent);
        }

        .btn {
            padding: 12px 20px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 700;
        }

        .btn img { width: 20px; height: 20px; }

        .get-touch-btn {
            padding: 10px 22px;
            border-radius: 30px;
            font-weight: 500;
        }

        /* ==========================================
           HERO SECTION
        ========================================== */
        .hero {
            position: absolute;
            bottom: -50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding-bottom: 50px;
        }

        .hero-title {
            font-size: clamp(32px, 5vw, 46px);
            font-weight: 800;
            line-height: 1.2;
            text-transform: uppercase;
            color: var(--color-primary);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-img {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
        }

        .hero-img img {
            width: 90px;
            height: 45px;
            object-fit: cover;
            border-radius: 50px;
            box-shadow: var(--shadow-light);
            transition: transform 0.4s ease;
        }

        .hero-img img:hover { transform: scale(1.08); }

        .heroimg-prime {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
        }

        .hero-decor {
    height: calc(100vh - 300px);
        }

        .heroimg-prime::before {
            content: "";
            position: absolute;
            width: 800px;
            height: 800px;
            background: url("https://demo.awaikenthemes.com/ecobin/wp-content/uploads/2025/10/hero-image-bg-prime.png") no-repeat center;
            background-size: contain;
            animation: rotateBg 60s linear infinite;
            z-index: -1;
            bottom: -250px;
        }

        @keyframes rotateBg {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* ==========================================
           LOGO TICKER
        ========================================== */
        .logo-ticker { 
            overflow: hidden;
            background: var(--color-accent);
            padding: 25px 0;
            border-radius: 0 0 16px 16px;
        }

        .ticker-track {
            display:none;
            /*display: flex;*/
            width: max-content;
            animation: scrollLeft 20s linear infinite;
        }

        .ticker-item {
            padding: 0 40px;
            display: flex;
            align-items: center;
        }

        .ticker-item img {
            height: 40px;
            width: auto;
            opacity: 0.7;
        }

        @keyframes scrollLeft {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* ==========================================
           SECTIONS COMMON
        ========================================== */
        section {
            padding: 100px 0;
        }

        /* ==========================================
           ABOUT US SECTION
        ========================================== */
        .aboutus-section .chips {
            background-color: transparent;
            padding: 10px 20px;
            border: 1px solid rgba(13, 60, 85, 0.08);
            border-radius: 100px;
            transition: var(--transition);
            cursor: pointer;
        }

        .aboutus-section .chips:hover {
            background-color: var(--color-primary);
            color: var(--color-white);
            transform: translateY(-4px);
        }

        .icon-phone {
            background-color: var(--color-primary);
            padding: 6px;
            border-radius: 50%;
            width: 30px;
            height: 30px;
        }

        .image-hover-zoom {
            overflow: hidden;
            border-radius: var(--border-radius);
            position: relative;
            transition: var(--transition);
        }

        .image-hover-zoom img {
            transition: transform 0.5s ease;
            width: 100%;
            height: auto;
        }

        .image-hover-zoom:hover img {
            transform: scale(1.05);
        }

        .communities-image {
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: end;
            height: 100%;
            background: url('https://demo.awaikenthemes.com/ecobin/wp-content/uploads/2025/11/about-communities-image-1.jpg') center center no-repeat;
            background-size: 115%;
            border-radius: var(--border-radius);
            transition: background-size 0.5s ease;
        }

        .communities-image .content {
            background: rgba(0, 0, 0, 0.8);
            color: #ffffff;
            padding: 24px;
        }

        .communities-image:hover {
            background-size: 120%;
        }

        .experience-box {
            flex-direction: column;
            display: flex;
            justify-content: space-between;
        }

        /* ==========================================
           SERVICES SECTION
        ========================================== */
        .list-head {
            font-weight: 700;
            border-bottom: 1px solid rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 1rem;
            margin-bottom: 1rem;
        }

        .list-head span {
            display: inline-block;
            background-color: rgba(0, 0, 0, 0.02);
            padding: 10px;
            border-radius: 50%;
            transition: var(--transition);
        }

        .panel .media {
            height: 184px;
            background-size:cover;
            border-radius: 16px;
                      
            position: relative;
        }

        .custser{ background: url(../images/customized-service.png) center center / 100% no-repeat; transition: background-size 0.5s ease; }
        .markund{ background: url(../images/market_understand.png) center center / 100% no-repeat; transition: background-size 0.5s ease; }
        .exp{ background: url(../images/exp.png) center center / 100% no-repeat; transition: background-size 0.5s ease; }
        .source{ background: url(../images/source.png) center center / 100% no-repeat; transition: background-size 0.5s ease; }
        .addipl{ background: url(../images/addipl.png) center center / 100% no-repeat; transition: background-size 0.5s ease; }
        .deliver{ background: url(../images/deliver.png) center center / 100% no-repeat; transition: background-size 0.5s ease; }
        .pl-touch{ background: url(../images/pl-touch.png) center top / 100% no-repeat; transition: background-size 0.5s ease; }
        .panel .media:hover {
            background-size: 120%;
        }

        .services-section .panel:hover,
        .product-section .panel:hover,
        .process-section .panel:hover {
            box-shadow: var(--shadow-light);
            transform: translateY(-10px);
            cursor: pointer;
        }


        .product-category:hover {
            box-shadow: var(--shadow-light);
            transform: translateY(-10px);
            cursor: pointer;
        }

        .panel:hover .list-head span {
            transform: rotate(-45deg);
        }

        .product-list {
            list-style: none;
            padding-left: 0;
        }

        .product-list li {
            padding: 8px 0;
            position: relative;
            padding-left: 20px;
        }

        .product-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--color-accent);
            font-weight: bold;
        }

        /* ==========================================
           E-WASTE SECTION
        ========================================== */
        .category-icon {
            width: 60px;
            height: 60px;
            background: var(--color-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .category-icon i {
            font-size: 24px;
            color: var(--color-white);
        }

        /* ==========================================
           TESTIMONIAL SECTION
        ========================================== */
        .testimonial-swiper {
            background: #fff;
            padding: 24px;
            border-radius: 20px;
            position: relative; transition: all 0.3s ease;
        }
        .testimonial-swiper:hover {
            box-shadow: var(--shadow-light);
            transform: translateY(-10px);
        }
        .testimonial-section img {
            border-radius: 50%;
            width: 60px;
            height: 60px;
            object-fit: cover;
            margin-right: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 15px;
            position: relative;
            padding-top: 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .swiper-button {
            width: 100px;
            height: 40px;
            position: absolute;
            bottom: 0px;
            right: 0;
        }

        .swiper-button-next,
        .swiper-button-prev {
            width: 40px;
            height: 40px;
            background: var(--color-accent);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px;
        }

        /* ==========================================
           FOOTER
        ========================================== */
        footer {
            padding-top: 100px;
            border-radius: 20px;
        }

        footer .panel {
            padding: 40px;
            background-color: #181818;
            color: var(--color-white);
        }

        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 0;
            margin: 0;
        }

        footer h5 {
            color: var(--color-white);
            margin-bottom: 20px;
        }

        footer a {
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        footer a:hover {
            color: var(--color-accent);
        }

        footer li a {
            padding: 8px 0;
            display: block;
        }

        footer li a:hover {
            color: var(--color-accent) !important;
            padding-left: 5px;
        }

        footer .d-flex a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
        }

        .social-icons a:hover {
            background: var(--color-accent);
            color: var(--color-white);
            transform: translateY(-5px);
        }

        /* ==========================================
           RESPONSIVE STYLES
        ========================================== */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: clamp(28px, 4vw, 48px);
            }
            
            .title2 {
                font-size: 36px;
            }
        }

        @media (max-width: 992px) {
            section {
                padding: 80px 0;
            }
            
            .hero-img img {
                width: 70px;
                height: 35px;
            }
            
            .title2 {
                font-size: 32px;
            }
            
            .heroimg-prime::before {
                width: 600px;
                height: 600px;
                bottom: -200px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding: 15px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .header {
                min-height: auto;
                border-radius: 12px 12px 0 0;
            }
            
            .hero {
                position: relative;
                padding: 40px 20px;
                bottom: 0;
            }
            
            .hero-title {
                flex-direction: column;
                font-size: 24px;
            }
            
            .hero-img {
                margin: 5px 0;
            }
            
            .hero-img img {
                width: 60px;
                height: 30px;
            }
            
            .heroimg-prime::before {
                width: 400px;
                height: 400px;
                bottom: -100px;
            }
            
            .title2 {
                font-size: 28px;
            }
            
            .navbar-nav {
                text-align: center;
                padding-top: 20px;
            }
            
            .get-touch-btn {
                width: 100%;
                text-align: center;
                margin-top: 20px;
            }
            
            .ticker-item {
                padding: 0 20px;
            }
            
            .ticker-item img {
                height: 30px;
            }
            
            .communities-image {
                height: 300px;
                margin-bottom: 20px;
            }
            
            .swiper-button {
                position: relative;
                margin-top: 20px;
                right: auto;
                bottom: auto;
            }
            
            .testimonial-swiper {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 10px;
            }
            
            section {
                padding: 40px 0;
            }
            
            .hero-title {
                font-size: 20px;
            }
            
            .title2 {
                font-size: 24px;
            }
            
            .hero-img img {
                width: 50px;
                height: 25px;
            }
            
            .hero-decor {
                max-width: 300px;
            }
            
            .heroimg-prime::before {
                width: 300px;
                height: 300px;
                bottom: -50px;
            }
            
            .navbar-brand img {
                height: 40px;
            }
            
            .ticker-item {
                padding: 0 15px;
            }
            
            .ticker-item img {
                height: 25px;
            }
            
            .communities-image {
                height: 250px;
            }
            
            footer .panel {
                padding: 30px 20px;
            }
            
            .copyright {
                padding: 30px 0;
            }
        }

        @media (max-width: 375px) {
            .hero-title {
                font-size: 18px;
            }
            
            .hero-img img {
                width: 40px;
                height: 20px;
            }
            
            .title2 {
                font-size: 20px;
            }
            
            .hero-decor {
                max-width: 250px;
            }
            
            .ticker-item {
                padding: 0 10px;
            }
        }